-
-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue 9029 #224
Issue 9029 #224
Conversation
Allow users to set special `skip-update` feature for idividual qubes to suppress Qubes Update systray widget notifications on them. fixes: QubesOS/qubes-issues#9029
a020e83
to
bcc6bc8
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #224 +/- ##
==========================================
- Coverage 93.72% 93.61% -0.12%
==========================================
Files 57 57
Lines 10845 10892 +47
==========================================
+ Hits 10165 10197 +32
- Misses 680 695 +15
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
bcc6bc8
to
986fc5d
Compare
For `check_support` and `check_update`, it is more convenient to catch exceptions within the helper functions once.
1abe32d
to
276c164
Compare
|
||
def domain_added(self, _submitter, _event, vm, *_args, **_kwargs): | ||
def domain_added(self, _submitter, _event, vmname, *_args, **_kwargs): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is wrong, "vm" is used as keyword argument, so you can't change its name. I'll fix it.
I should have put that through openQA earlier...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ops. Sorry for mistake. I wonder why it did not show up during the unit tests. I guess there is no unit test for installing an outdated or obsolete template.
fixes: QubesOS/qubes-issues#9029